From: Ken Raeburn Date: Tue, 16 Jul 2002 19:49:19 +0000 (+0000) Subject: (xstricmp): String pointer args now point to const. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~31576 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=af33cbe14fbd77aff0d6d82a66e10af0929b2beb;p=emacs.git (xstricmp): String pointer args now point to const. --- diff --git a/src/xfaces.c b/src/xfaces.c index 65ce504d270..c6496aa1bd2 100644 --- a/src/xfaces.c +++ b/src/xfaces.c @@ -824,7 +824,7 @@ x_free_gc (f, gc) int xstricmp (s1, s2) - unsigned char *s1, *s2; + const unsigned char *s1, *s2; { while (*s1 && *s2) {